how to apply css when not on hover

55

.element:not(:hover) {
	/*Your code here*/
}
section{
   font-size:3em;
}

div:not(:hover) + section{
 display:none;
}

Comments

Submit
0 Comments